Saltar al contenido principal

Nomination

Nominal Assign

menta supports the integration of ticket nomination, allowing each ticket to be assigned to a specific individual at the time of issuance. To implement this feature, it is necessary to include additional information with each ticket during the creation process. This information should be provided within ticket.nominalTicket and can include both fullName and identification.

Integration Example

To create nominal tickets, you should use the following endpoint:

Here is an example of how to notify menta of a ticket issuance with fictional data using cURL.
    curl -X POST 'https://api.mentatickets.com/v1/tickets'
-H 'Authorization: YOUR_API_KEY'
-H 'Content-Type: application/json'
--data-raw '[
{
"ticketOptionId": "0001",
"showId": "4726",
"externalReferenceEventId": "the-lion-king-broadway",
"buyer": "buyer@emaildomain.com",
"ticketId": "111",
"ticketAccess": {
"type": "URL",
"locator": "https://storage.googleapis.com/default_mentatickets-core/Captura%20de%20pantalla%202023-03-21%20a%20la(s)%2010.46.42.png",
"status": "LOCKED"
},
"nominalTicket": {
"fullName": "John Doe",
"identification": "12345678"
}
}
]'
Respuesta JSON
{
"status": 200,
"data": [{TICKETDATA}],
"errors": null
}

Nominal Ticket Parameters

FieldData TypeDescriptionExample
fullNameStringUser Full Name."John Doe"
identificationStringUser Identification."41253482"

For more detailed information about Ticket and Nominal Asign, please refer to the ticket data section.